mock Web server を立てる
request を錄音する
VCRRuby.icon
Ruby.icon以外にもいっぱい移植されてるでよ
API schema に適合した server を立てる
response は、default 値だったり、property based testing じみて random 生成だったり
file を供するだけなら
$ bb '(org.httpkit.server/run-server (fn [{:keys uri}] (let f (clojure.java.io/file (str "." uri)) (if (and (.isFile f) (.canRead f)) {:status 200 :body (slurp f)} {:status 404}))) {:port 8000}) (async/<!! (async/chan))' Babashka.icon
$ npx http-server . -p 8000
Node.js.icon
$ ruby -run -e httpd -- --port=8000 .
Ruby.icon
$ bash -eux -c "c=\$(mktemp); echo 'events {} http { server { listen 8000; location / { root \"$(pwd)\"; } } }' > \$c; nginx -g 'daemon off;' -c \$c -e stderr"
Nginx.icon
$ erl -noshell -eval 'ok = inets:start(), {ok, _} = inets:start(httpd, {port, 8000}, {server_name, "tmp"}, {server_root, "."}, {document_root, "."}).' Erlang.icon